Can some one just point to a link in the KB that shows how to fetch custom data from a incident?
API call for custom data in incidents
Are you referring to the original event/alert data that triggered the incident?
https://developer.pagerduty.com/api-reference/b3A6Mjc0ODE0Nw-list-log-entries-for-an-incident
curl --request GET
âurl âhttps://api.pagerduty.com/incidents/INC_ID_HERE/log_entries?is_overview=false&include[]=channelsâ
âheader âAccept: application/vnd.pagerduty+json;version=2â
âheader âAuthorization: Token token=YOUR_TOKENâ
âheader âContent-Type: application/jsonâ
Then in the response, find the âtrigger_log_entryâ type and look at the channel.details object for the âCustom Detailsâ listed on the Details tab of an incident in the PD WebUI.